home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr53 / pctv4n_1.zip / QCOLUMN.H < prev    next >
Text File  |  1993-06-10  |  621b  |  27 lines

  1. /**************************************************
  2. * FILE NAME: qcolumn.h   TITLE:  column description
  3. *
  4. * AUTHOR: Ken North     Resource Group, Inc.    
  5. *                       2604B El Camino Real, #351
  6. * copyright(c)1992      Carlsbad, CA 92008
  7. **************************************************
  8. * SYNOPSIS: 
  9. *      column description for QELib
  10. ***************************************************/
  11.  
  12. #ifndef __QCOLUMN_H
  13. #define __QCOLUMN_H
  14.  
  15. struct ColumnDesc
  16.    {
  17.     int     data_type;
  18.     int     length;
  19.     int     scale;
  20.     int     namelen;
  21.     char    fldname [NAMELENGTH];
  22.    };
  23.  
  24.  
  25. #endif
  26.  
  27.